home *** CD-ROM | disk | FTP | other *** search
/ Software 2000 / Software 2000 Volume 1 (Disc 1 of 2).iso / utilities / u293.dms / in.adf / FutureSound / strcmp.c < prev   
Encoding:
Text File  |  1987-06-20  |  162 b   |  14 lines

  1.  
  2. int strcmp(a,b)
  3. register char *a, *b;
  4. {
  5.    while (*a++ == *b) {
  6.       if (! *b++ )
  7.          return(0);
  8.    }
  9.    if (*--a < *b)
  10.       return(-1);
  11.    return(1);
  12. }
  13.  
  14.